home *** CD-ROM | disk | FTP | other *** search
- {!R! FONT 15; FTMD 15; EXIT;}
-
-
- {***************************************************************************}
- {** Program : NWTTS **}
- {***************************************************************************}
- {** Version : 1.3 ** Started : 11/11/91 ** Ended : / / **}
- {***************************************************************************}
- {******************************** Description ******************************}
- {***************************************************************************}
- {** OOP library for Netware API **}
- {** **}
- {** This unit forms the second level object : TTS **}
- {** This object is a descandent of : NETWARE **}
- {** **}
- {** **}
- {** **}
- {** **}
- {***************************************************************************}
- {******************************** Information ******************************}
- {***************************************************************************}
- {** Provides Netware Transaction Tracking Services **}
- {** **}
- {** **}
- {** **}
- {** This code is (c) 1991,1992 Tony Covelli **}
- {** Portions (c) Novell Inc, **}
- {** **}
- {** **}
- {***************************************************************************}
-
- {$I NETWARE.INC}
-
- UNIT NWTTS;
-
- INTERFACE
-
- USES
-
- netware, nwvar;
-
- TYPE
-
- pTTSOBJ = ^TTSOBJ;
- TTSOBJ = object (NetwareOBJ)
-
- CONSTRUCTOR Init;
-
- FUNCTION TTSAbortTransaction : WORD;
-
- FUNCTION TTSBeginTransaction : WORD;
-
- FUNCTION TTSEndTransaction (VAR TransactionNumber) : WORD;
-
- FUNCTION TTSGetApplicationThresholds (VAR LogicalRecordLockThreshold;
- VAR PhysicalRecordLockThreshold) : WORD;
-
- FUNCTION TTSGetWorkStationThresholds (VAR LogicalRecordLockThreshold;
- VAR PhysicalRecordLockThreshold) : WORD;
-
- FUNCTION TTSIsAvailable : WORD;
-
- FUNCTION TTSSetApplicationThresholds (LogicalRecordLockThreshold,
- PhysicalRecordLockThreshold : BYTE) : WORD;
-
- FUNCTION TTSSetWorkStationThresholds (LogicalRecordLockThreshold,
- PhysicalRecordLockThreshold : BYTE) : WORD;
-
- FUNCTION TTSTransactionStatus (VAR TransactionNumber) : WORD;
-
- DESTRUCTOR Done; VIRTUAL;
-
- END;
-
-